home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- directoryreader.h - description
- -------------------
- begin : Son Nov 10 2002
- copyright : (C) 2002 by AndrΘ Simon
- email : andre.simon1@gmx.de
- ***************************************************************************/
-
- /***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
- #ifndef DIRECTORYREADER_H
- #define DIRECTORYREADER_H
-
- #include <string>
- #include <vector>
-
-
- /**enthΣlt Methoden zum Auslesen von Verzeichnisinhalten
- *@author AndrΘ Simon
- */
-
- using namespace std;
-
- //typedef std::set
- //<string>::iterator FileNameIterator;
-
- class DirectoryReader
- {
- public:
- DirectoryReader();
- ~DirectoryReader();
- static bool getEntries(vector<string> &fileList, string wildcard,bool recursiveSearch=false) ;
- };
-
- #endif
-